home *** CD-ROM | disk | FTP | other *** search
/ Die Speccy' 97 / Die Speccy' 97.iso / amiga_system / the_aminet / dev / lang / python_src.lha / amigapython / testsprintf.c < prev    next >
C/C++ Source or Header  |  1995-10-25  |  80b  |  8 lines

  1. #include <stdio.h>
  2.  
  3. main() {
  4.     char buf[16];
  5.  
  6.     sprintf(buf, "%.12g", 1.23456);
  7. }
  8.